From 744955753f45ffc25069b3ea858d842bd334acf8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 31 Jul 2021 07:46:54 -0400 Subject: [PATCH] iconhelper: Fix the paintable implementation get_current_image was recursing due to an obvious typo. Fixes: #4140 --- gtk/gtkiconhelper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkiconhelper.c b/gtk/gtkiconhelper.c index e4ff62a3c1..80cbca7474 100644 --- a/gtk/gtkiconhelper.c +++ b/gtk/gtkiconhelper.c @@ -294,7 +294,7 @@ gtk_icon_helper_paintable_get_current_image (GdkPaintable *paintable) if (self->paintable == NULL) return NULL; - return gtk_icon_helper_paintable_get_current_image (self->paintable); + return gdk_paintable_get_current_image (self->paintable); } static int -- 2.30.2